Skip to content

Pseudocode

The following information sets out how pseudocode will appear within the examinations of this syllabus.

General style

Font style and size

Pseudocode is presented in Courier New. The size of the font will be consistent throughout.

Indentation

Lines are indented by four spaces to indicate that they are contained within a statement in a previous line. Where it is not possible to fit a statement on one line any continuation lines are indented by two spaces from the margin. In cases where line numbering is used, this indentation may be omitted. Every effort will be made to make sure that code statements are not longer than a line of code, unless this is necessary.

Note that the THEN and ELSE clauses of an IF statement are indented by only two spaces. Cases in CASE statements are also indented by only two spaces.

Case

Keywords are in upper case, e.g. IF, REPEAT, PROCEDURE. Identifiers are in mixed case with upper case letters indicating the beginning of new words, e.g. NumberOfPlayers.

Meta-variables : symbols in the pseudocode that should be substituted by other symbols are enclosed in angled brackets < >.

Example – Meta-variables

c
REPEAT
    <Statements>
UNTIL <Condition>

Lines and line numbering

Each line representing a statement is numbered. However, when a statement runs over one line of text, the continuation lines are not numbered.

Comments

Comments are preceded by two forward slashes //. The comment continues until the end of the line. For multi-line comments, each line is preceded by //. Normally the comment is on a separate line before, and at the same level of indentation as, the code it refers to. Occasionally, however, a short comment that refers to a single line may be at the end of the line to which it refers.

Example – comments

c
// This procedure swaps
// values of X and Y
PROCEDURE SWAP(X : INTEGER, Y : INTEGER)
    Temp ← X // temporarily store X
    X ← Y
    Y ← Temp
ENDPROCEDURE
Python

Single-line comments in Python begin with #, for example:

python
# This is a comment
print('Hello, World!') # Comment after code
# print('Nothing to do')

Variables, constants and data types

Basic data types

The following keywords are used to designate basic data types:

  • INTEGER a whole number
  • REAL a number capable of containing a fractional part
  • CHAR a single characters
  • STRING a sequence of zero or more characters
  • BOOLEAN the logical values TRUE and FALSE

Literals

Literals of the above data types are written as follows:

  • Integer written as normal in the denary system, e.g. 5, –3
  • Real always written with at least one digit on either side of the decimal point, zeros being added if necessary, e.g. 4.7, 0.3, –4.0, 0.0
  • Char a single character delimited by single quotes, e.g. ꞌxꞌ, ꞌcꞌ, ꞌ@ꞌ
  • String delimited by double quotes. A string may contain no characters (i.e. the empty string), e.g. "This is a string", ""
  • Boolean TRUE, FALSE
Python

The following basic data types are commonly used in Python (other programming languages may distinguish between single characters and strings) :

Data typeDescriptionExample
intIntegernum=1
floatFractionnum=1.5
strSingle Charactercharacter='a'
strCharactersword='hello'
boolTrue or Falsejudge=True
python
score = 100 #  int
height = 1.85 #  float
name = "Oldmoon" #  str
is_pass = True # bool

Identifiers

Identifiers (the names given to variables, constants, procedures and functions) are in mixed case using Pascal case, e.g. FirstName.

WARNING

  • They can only contain letters (A–Z, a–z) and digits (0–9).
  • They must start with a capital letter and not a digit.
  • Accented letters and other characters, including the underscore, should not be used.

As in programming, it is good practice to use identifier names that describe the variable, procedure or function to which they refer. Single letters may be used where these are conventional (such as i and j when dealing with array indices, or X and Y when dealing with coordinates) as these are made clear by the convention.

Keywords should never be used as identifier names.

Identifiers should be considered case insensitive, for example, Countdown and CountDown should not be used as separate variables.

Variable declarations

Declarations are made as follows:

DECLARE <identifier> : <data type>

Example – variable declarations

c
DECLARE Counter : INTEGER
DECLARE TotalToPay : REAL
DECLARE GameOver : BOOLEAN

Constants

It is good practice to use constants if this makes the pseudocode more readable, and easier to update if the value of the constant changes. Constants are declared by stating the identifier and the literal value in the following format:

c
CONSTANT <identifier><value>

Example – CONSTANT declarations

c
CONSTANT HourlyRate ← 6.50
CONSTANT DefaultText ← "N/A"

Only literals can be used as the value of a constant. A variable, another constant or an expression must never be used.

Assignments

The assignment operator is ← Assignments should be made in the following format:

<identifier> ← <value>

The identifier must refer to a variable (this can be an individual element in a data structure such as an array or an abstract data type). The value may be any expression that evaluates to a value of the same data type as the variable.

Example – assignments

c
Counter ← 0
Counter ← Counter + 1
TotalToPay ← NumberOfHours * HourlyRate
Python

Python variables do not need to be explicitly declared to preserve memory space. The declaration occurs automatically when you assign a value to a variable. The equal sign = is used to assign a value to a variable.

The operand to the left of the = operator is the name of the variable, and the operand to the right of the = operator is the value stored in the variable.

myInt = 4 means that the value 4 is assigned to the variable named myInt.

python
myInt = 4
myReal = 2.5
myChar = 'a'
myString = 'hello'
print(myInt)
print(myReal)
print(myChar)
print(myString)

In the above code, myInt, myReal, myChar, and myString are variable names, while 4/2.5, 'a', and 'hello' are variable values.

Variables can also reference and operate on each other, run the following code to try it out:

python
a = 1
b = 1
a = b + b
print(a)
print(b)

Arrays

Declaring arrays

Arrays are fixed-length structures of elements of identical data type, accessible by consecutive index numbers. It is good practice to explicitly state what the lower bound of the array (i.e. the index of the first element) is because this defaults to either 0 or 1 in different systems. Generally, a lower bound of 1 will be used. Square brackets are used to indicate the array indices. 1D and 2D arrays are declared as follows (where l, l1, l2 are lower bounds and u, u1, u2 are upper bounds):

c
DECLARE <identifier> : ARRAY[<l>:<u>] OF <data type>
DECLARE <identifier> : ARRAY[<l1>:<u1>, <l2>:<u2>] OF <data type>

Example – array declaration

c
DECLARE StudentNames : ARRAY[1:30] OF STRING
DECLARE NoughtsAndCrosses : ARRAY[1:3, 1:3] OF CHAR

Using arrays

In the main pseudocode statements, only one index value is used for each dimension in the square brackets.

Example – using arrays

c
StudentNames[1] ← "Ali"
NoughtsAndCrosses[2,3] ← ꞌXꞌ
StudentNames[n+1] ← StudentNames[n]

An appropriate loop structure is used to assign the elements individually.

Example – assigning a group of array elements

c
FOR Index ← 1 TO 30
    StudentNames[Index] ← ""
NEXT Index
Python
  • An element in the list can be read using the list name + [index].

1D Array

python

colors = ['red', 'green', 'blue', 'yellow', 'white', 'black']
print(colors[0]) #red
print(colors[1]) #green
print(colors[2]) #blue

2D Array

python
numbers_1d = [1,2,3]
numbers_2d = [[1,2,3],[4,5,6],[7,8,9]]
python
numbers_2d = [[1,2,3],[4,5,6],[7,8,9]]
numbers = numbers_2d[0]
print(numbers) #[1, 2, 3]
print(numbers[0]) #1
print(numbers_2d[0][0]) #1

zero

The index of the list must start at 0, which is the easiest point for beginners to forget.

Common operations

Input and output

Values are input using the INPUT command as follows:

c
INPUT <identifier>

The identifier should be a variable (that may be an individual element of a data structure such as an array). Values are output using the OUTPUT command as follows:

c
OUTPUT <value(s)>

Several values, separated by commas, can be output using the same command.

Example – INPUT and OUTPUT statements

c
INPUT Answer
OUTPUT Score
OUTPUT "You have ", Lives, " lives left"
Python

Python's input() method defaults to the string str, so if you input the number 1, the program will get the string '1', not the mathematical 1.

python
print('1'+'1')
print(1+1)

You can see that the addition of the string 1 is the concatenation of the two to get '11', and the addition of the number 1 can get the result of the operation 2.

So in the input(), if you want to use the input value as a number, you must do a type conversion.

Convert type

MethodExample
intint('4') #Convert '4' to 4.
floatfloat('4.5') #Convert '4.5' to 4.5.
strstr(4) #Convert 4 to '4'.
python
string = input()
num = int(input())
real = float(input())
print(string+string)
print(num+num)
print(real+real)

Output with space

Python can output multiple elements at the same time, with space by default.

python
print(1,2,3) # Output 1 2 3

Arithmetic operations

Standard arithmetic operator symbols are used:

SymbolExplanation
+addition
-subtraction
*multiplication
/division
^raised to the power of

Example – arithmetic operations

c
Answer ← Score * 100 / MaxMark
Answer ← Pi * Radius ^ 2

The integer division operators MOD and DIV can also be used.

DIV(<identifier1>, <identifier2>)

Returns the quotient of identifier1 divided by identifier2 with the fractional part discarded.

MOD(<identifier1>, <identifier2>)

Returns the remainder of identifier1 divided by identifier2 The identifiers are of data type integer.

Example – MOD and DIV

c
DIV(10, 3) returns 3
MOD(10, 3) returns 1

Multiplication and division have higher precedence over addition and subtraction (this is the normal mathematical convention). However, it is good practice to make the order of operations in complex expressions explicit by using parentheses.

Python
运算符描述示例
+Addition5 + 2 => 7
-Subtraction5 – 2 => 3
*Multiply5 * 2 => 10
/Divide5 / 2 => 2.5
%Mod5 % 2 => 1
**Power5 ** 2 => 25
//Whole Divide5 // 2 => 2
python
a = 5
b = 2
print(a+b) #7
print(a-b) #3
print(a*b) #10
print(a/b) #2.5
print(a%b) #1
print(a**b) #25
print(a//b) #2

Logical operators

The following symbols are used for logical operators:

SymbolExplanation
=equal to
<less than
<=less than or equal to
>greater than
>=greater than or equal to
<>not equal to

The result of these operations is always of data type BOOLEAN.

In complex expressions, it is advisable to use parentheses to make the order of operations explicit.

Python

In Python, an equal sign = is an assignment, assigning the value on the right to the variable on the left, and two equal signs == are used to determine whether they are equal, and are an operator that gives the result True or False.

python
a = 5
b = 2
print(a==b) #False
print(a!=b) #True
print(a>b) #True
print(a<b) #False
print(a>=b) #True
print(a<=b) #False

Boolean operators

The only Boolean operators used are AND, OR and NOT. The operands and results of these operations are always of data type BOOLEAN.

In complex expressions, it is advisable to use parentheses to make the order of operations explicit.

Example – Boolean operations

c
IF Answer < 0 OR Answer > 100
  THEN
Correct ← FALSE ELSE
Correct ← TRUE ENDIF
Python
python
a = 5
b = 3
c = 8
print(a > b and a > c) #False
print(a > b or a > c) #True
print(not a > c) #True

String operations

LENGTH(<identifier>)

Returns the integer value representing the length of string. The identifier should be of data type string.

LCASE(<identifier>)

Returns the string/character with all characters in lower case. The identifier should be of data type string or char.

UCASE(<identifier>)

Returns the string/character with all characters in upper case. The identifier should be of data type string or char.

SUBSTRING(<identifier>, <start>, <length>)

Returns a string of length length starting at position start. The identifier should be of data type string, length and start should be positive and data type integer.

Generally, a start position of 1 is the first character in the string.

Example – string operations

c
LENGTH("Happy Days") //will return 10
LCASE(ꞌWꞌ) //will return ꞌwꞌ
UCASE("Happy") //will return "HAPPY"
SUBSTRING("Happy Days", 1, 5) //will return "Happy"

Other library routines

ROUND(<identifier>, <places>)

Returns the value of the identifier rounded to places number of decimal places. The identifier should be of data type real, places should be data type integer.

RANDOM()

Returns a random number between 0 and 1 inclusive.

Example – ROUND and RANDOM

c
Value ← ROUND (RANDOM() * 6, 0) // returns a whole number between 0 and 6
Python

LENGTH("Happy Days")

python
a = len("Happy Days") # 10

LCASE("Happy")

python
a = "Happy".lower() # HAPPY

UCASE("Happy")

python
a = "Happy".upper() # HAPPY

SUBSTRING("Happy Days", 1, 5)

python
a = "Happy Days"[0:5] # HAPPY

ROUND(1.234,1)

python
a = round(1.234,1) # 1.2

RANDOM()

python
import random
a = random.random() #0~1

Selection

IF statements

IF statements may or may not have an ELSE clause.

IF statements without an ELSE clause are written as follows:

c
IF <condition>
    THEN
       <statements>
ENDIF

IF statements with an ELSE clause are written as follows:

c
IF <condition>
    THEN
        <statements>
    ELSE
        <statements>
ENDIF

Note that the THEN and ELSE clauses are only indented by two spaces. (They are, in a sense, a continuation of the IF statement rather than separate statements.) When IF statements are nested, the nesting should continue the indentation of two spaces.

Example – nested IF statements

c
IF ChallengerScore > ChampionScore
  THEN
    IF ChallengerScore > HighestScore
      THEN
        OUTPUT ChallengerName, " is champion and highest scorer"
      ELSE
        OUTPUT Player1Name, " is the new champion"
    ENDIF
  ELSE
    OUTPUT ChampionName, " is still the champion"
    IF ChampionScore > HighestScore
      THEN
        OUTPUT ChampionName, " is also the highest scorer"
ENDIF ENDIF
Python

if

python
if {condition}:
	{statement1}
	{statement2}
	……

colon:

Don't forget colon: after {condition}!

indentation

We can use Tab or Space to input indentation before {statement1}!

python
if 5 > 3:
	print('I will output')
if 5 > 3 and 10 < 5:
	print('I will not output')
if True:
	print('I will output, too')

else

python
if {condition}:
	{statement1}
	{statement2}
	……
else:
	{statement3}
	{statement4}
	……
python
score = int(input())
if score >= 60:
	print(score, 'pass')
else:
	print(score, 'fail')
python
score = int(input())
if score >= 60:
	if score >= 90:
		print(score, 'excellent')
	else:
		print(score, 'pass')
else:
	print(score, 'fail')

CASE statements

CASE statements allow one out of several branches of code to be executed, depending on the value of a variable.

c
`CASE` statements are written as follows:
CASE OF <identifier>
    <value 1> : <statement>
    <value 2> : <statement>
    ...
ENDCASE

An OTHERWISE clause can be the last case:

c
CASE OF <identifier>
    <value 1> : <statement>
    <value 2> : <statement>
    ...
    OTHERWISE <statement>
ENDCASE

It is best practice to keep the branches to single statements as this makes the pseudocode more readable. Similarly, single values should be used for each case. If the cases are more complex, the use of an IF statement, rather than a CASE statement, should be considered.

Each case clause is indented by two spaces. They can be considered as continuations of the CASE statement rather than new statements.

Note that the case clauses are tested in sequence. When a case that applies is found, its statement is executed, and the CASE statement is complete. Control is passed to the statement after the ENDCASE. Any remaining cases are not tested.

If present, an OTHERWISE clause must be the last case. Its statement will be executed if none of the preceding cases apply.

Example – formatted CASE statement

c
INPUT Move
CASE OF Move
    ꞌWꞌ : Position ← Position – 10
    ꞌEꞌ : Position ← Position + 10
    ꞌAꞌ : Position ← Position – 1
    ꞌDꞌ : Position ← Position + 1
    OTHERWISE OUTPUT "Beep"
ENDCASE
Python

The case statement in Python was only released in Python3.10

python
grade = input()
match grade:
	case "A":
		print(score, 'excellent')
	case "B":
		print(score, 'pass')
	case "C":
		print(score, 'good')
	case _:
		print(score, 'fail')

Iteration

Count-controlled (FOR) loops

Count-controlled loops are written as follows:

c
FOR <identifier><value1> TO <value2>
    <statements>
NEXT <identifier>

The identifier must be a variable of data type INTEGER, and the values should be expressions that evaluate to integers.

The variable is assigned each of the integer values from value1 to value2 inclusive, running the statements inside the FOR loop after each assignment. If value1 = value2 the statements will be executed once, and if value1 > value2 the statements will not be executed.

An increment can be specified as follows:

c
FOR <identifier><value1> TO <value2> STEP <increment>
    <statements>
NEXT <identifier>

The increment must be an expression that evaluates to an integer. In this case the identifier will be assigned the values from value1 in successive increments of increment until it reaches value2. If it goes past value2, the loop terminates. The increment can be negative.

Example – nested FOR loops

Total ← 0
FOR Row ← 1 TO MaxRow
RowTotal ← 0
FOR Column ← 1 TO 10
RowTotal ← RowTotal + Amount[Row, Column] NEXT Column
    OUTPUT "Total for Row ", Row, " is ", RowTotal
Total ← Total + RowTotal NEXT Row
OUTPUT "The grand total is ", Total
Python
python
for {variable} in {sequence}:
	{statements}
python
for i in range(1,11): #1,2,3,4,5,6,7,8,9,10
	print(i, i*i)

range

range(start,end,step)

  • range(10) => [0,1,2,3,4,5,6,7,8,9]
  • range(1,10) => [1,2,3,4,5,6,7,8,9]
  • range(1,10,2) => [1,3,5,7,9]
  • range(2,10,2) => [2,4,6,8]

Post-condition (REPEAT) loops

Post-condition loops are written as follows:

REPEAT
    <Statements>
UNTIL <condition>

The condition must be an expression that evaluates to a Boolean. The statements in the loop will be executed at least once. The condition is tested after the statements are executed and if it evaluates to TRUE the loop terminates, otherwise the statements are executed again.

Example – REPEAT UNTIL statement

REPEAT
    OUTPUT "Please enter the password"
    INPUT Password
UNTIL Password = "Secret"
Python

No repeat

Pre-condition (WHILE) loops

Pre-condition loops are written as follows:

WHILE <condition> DO
   <statements>
ENDWHILE

The condition must be an expression that evaluates to a Boolean. The condition is tested before the statements, and the statements will only be executed if the condition evaluates to TRUE. After the statements have been executed the condition is tested again. The loop terminates when the condition evaluates to FALSE.

The statements will not be executed if, on the first test, the condition evaluates to FALSE.

Example – WHILE loop

WHILE Number > 9 DO
    Number ← Number – 9
ENDWHILE
Python
python
while {condition}:
	{statements}
python
i = 1
while i <= 10:
	print(i, i*i)
	i += 1

Procedures and functions

Defining and calling Procedures

A procedure with no parameters is defined as follows:

c
PROCEDURE <identifier>
    <statements>
ENDPROCEDURE

A procedure with parameters is defined as follows:

c
PROCEDURE <identifier>(<param1>:<datatype>, <param2>:<datatype>...)
    <statements>
ENDPROCEDURE

The <identifier> is the identifier used to call the procedure. Where used, param1, param2, etc. are identifiers for the parameters of the procedure. These will be used as variables in the statements of the procedure. Procedures should be called as follows:

c
CALL <identifier>
CALL <identifier>(Value1,Value2...)

These calls are complete program statements.

When parameters are used, Value1, Value2... must be of the correct data type as in the definition of the procedure.

When the procedure is called, control is passed to the procedure. If there are any parameters, these are substituted by their values, and the statements in the procedure are executed. Control is then returned to the line that follows the procedure call.

Python

No procedure

Defining and calling functions

Functions operate in a similar way to procedures, except that in addition they return a single value to the point at which they are called. Their definition includes the data type of the value returned.

A function with no parameters is defined as follows:

FUNCTION <identifier> RETURNS <data type>
   <statements>
ENDFUNCTION

A function with parameters is defined as follows:

FUNCTION <identifier>(<param1>:<datatype>, <param2>:<datatype>...) RETURNS <data type>
    <statements>
ENDFUNCTION

The keyword RETURN is used as one of the statements within the body of the function to specify the value to be returned. Normally, this will be the last statement in the function definition.

Because a function returns a value that is used when the function is called, function calls are not complete program statements. The keyword CALL should not be used when calling a function. Functions should only be called as part of an expression. When the RETURN statement is executed, the value returned replaces the function call in the expression and the expression is then evaluated.

Example – definition and use of a function

FUNCTION SumSquare(Number1:INTEGER, Number2:INTEGER) RETURNS INTEGER
    RETURN Number1 * Number1 + Number2 * Number2
ENDFUNCTION
OUTPUT "Sum of squares = ", SumSquare(10, 20)
Python
python
def {function}({parameters}):
	{statements}
	return {value}
python
def factorial(number):
	result = 1
	for i in range(1, number + 1):
		result = result * i
	return result
f1 = factorial(5)
f2 = factorial(10)
print(f1)
print(f2)

File handling

Handling files

It is good practice to explicitly open a file, stating the mode of operation, before reading from or writing to it. This is written as follows:

OPENFILE <File identifier> FOR <File mode>

The file identifier will be the name of the file with data type string. The following file modes are used:

  • READ for data to be read from the file
  • WRITE for data to be written to the file. A new file will be created and any existing data in the file will be lost.

A file should be opened in only one mode at a time. Data is read from the file (after the file has been opened in READ mode) using the READFILE command as follows:

c
READFILE <File Identifier>, <Variable>

When the command is executed, the data item is read and assigned to the variable. Data is written into the file after the file has been opened using the WRITEFILE command as follows:

c
WRITEFILE <File identifier>, <Variable>

When the command is executed, the data is written into the file. Files should be closed when they are no longer needed using the CLOSEFILE command as follows:

c
CLOSEFILE <File identifier>

Example – file handling operations

This example uses the operations together, to copy a line of text from FileA.txt to FileB.txt

c
DECLARE LineOfText : STRING
OPENFILE FileA.txt FOR READ
OPENFILE FileB.txt FOR WRITE
READFILE FileA.txt, LineOfText
WRITEFILE FileB.txt, LineOfText
CLOSEFILE FileA.txt
CLOSEFILE FileB.txt
Python

readline

file.readline([size])

python
f1 = open("a.txt", 'r')
content = f1.readline()
print(content) #Output first line of a.txt
f1.close()

write

file.write(str)

python
f1 = open("a.txt", 'w')
f1.write('hello') #write hello to a.txt
f1.close()